dmuratshin 9 anni fa
parent
commit
685bf6214e
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/example.cpp

+ 2 - 2
src/example.cpp

@@ -45,12 +45,12 @@ void example_init()
         if (dir.x < -50)
         {
             pressed = false;
-            log::messageln("swipe left");
+            log::messageln("swipe right");
         }
         if (dir.x > 50)
         {
             pressed = false;
-            log::messageln("swipe right");
+            log::messageln("swipe left");
         }
     });
 }