ソースを参照

Graphics: leave vsync up to the caller

Streetwalrus Einstein 10 年 前
コミット
d44021d4d3
共有1 個のファイルを変更した0 個の追加3 個の削除を含む
  1. 0 3
      src/graphics.c

+ 0 - 3
src/graphics.c

@@ -48,8 +48,6 @@ void buffer_free()
 
 void buffer_swap()
 {
-	lcd_vsync();
-
 	unsigned short *buffer_front_tmp = buffer_front;
 	buffer_front = buffer_back;
 	buffer_back = buffer_front_tmp;
@@ -59,7 +57,6 @@ void buffer_swap()
 
 void buffer_copy()
 {
-	lcd_vsync();
 	memcpy(buffer_front, buffer_back, BUFFER_SIZE);
 }