Skip to content

Commit

Permalink
Use a bool instead of an int to represent the initialized state in IO…
Browse files Browse the repository at this point in the history
…Win.cpp
  • Loading branch information
lioncash committed May 24, 2014
1 parent 440246a commit 728078b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/WiimoteReal/IOWin.cpp
Expand Up @@ -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;

Expand Down

0 comments on commit 728078b

Please sign in to comment.