Browse Source

Fixed unused parameter warning with empty IME handler #173

ocornut 10 years ago
parent
commit
bae32567c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      imgui.cpp

+ 1 - 1
imgui.cpp

@@ -8813,7 +8813,7 @@ static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)
 
 
 #else
 #else
 
 
-static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)
+static void ImeSetInputScreenPosFn_DefaultImpl(int, int)
 {
 {
 }
 }