diff --git a/__init__.py b/__init__.py
index 3369a677351eea828c8b7382e8bdbefd7bf1cf60..06efd089f1a8bb4c3c88b6225ad86009a2841616 100755
--- a/__init__.py
+++ b/__init__.py
@@ -37,9 +37,9 @@ class EndlessSequencer(Application):
         self.startTime = time.ticks_ms()
         self.SILENCE = 99
         self.bpm = 120
-        self.time_signature = [0.5, 1, 2] # 1/16, 1/8, 1/4
-        self.time_signature_txt = ['1/16', '1/4', '1/8']
-        self.current_time_signature = 2 # 1/8
+        self.time_signature = [0.5, 2, 1]
+        self.time_signature_txt = ['1/16', '1/8', '1/4']
+        self.current_time_signature = 1 # 1/8
 
     def draw(self, ctx: Context) -> None:
         ctx.rgb(*colours.BLACK)