Skip to content

Commit

Permalink
Merge pull request #408 from lioncash/bool
Browse files Browse the repository at this point in the history
Use a bool instead of an int to represent the initialized state in IOWin.cpp
  • Loading branch information
delroth committed May 25, 2014
2 parents b584fcc + 728078b commit 010ca04
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 010ca04

Please sign in to comment.