소스 검색

One line change, make rendering far more efficient.

master
Josh Hofing 11 년 전
부모
커밋
ecd30d5f7e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/Render.java

+ 2
- 1
src/Render.java 파일 보기

@@ -201,7 +201,8 @@ public class Render extends Canvas implements Runnable, MouseListener,
}
public void draw(int x, int y, int color) {
_pixels[x + y * width] = color;
//if (_pixels[x + y * width] != color)
_pixels[x + y * width] = color;
}
public void clear() {


불러오는 중...
취소
저장