mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #408 from lioncash/bool
Use a bool instead of an int to represent the initialized state in IOWin.cpp
This commit is contained in:
commit
010ca048df
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ PBth_BluetoothEnumerateInstalledServices Bth_BluetoothEnumerateInstalledServices
|
|||
HINSTANCE hid_lib = nullptr;
|
||||
HINSTANCE bthprops_lib = nullptr;
|
||||
|
||||
static int initialized = 0;
|
||||
static bool initialized = false;
|
||||
|
||||
std::unordered_map<BTH_ADDR, std::time_t> g_connect_times;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue