diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-02-25 14:59:20 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-02-25 14:59:20 +0100 |
commit | 0e6f7148ab0987574c45e78cb8fd6ff72fdf103a (patch) | |
tree | 2ccc32a6708e079db94cab4911eb10f912756af3 /src/ppusim/pixel.h | |
parent | 5850f4ab766256791f72301349e30d4cd304c675 (diff) |
optimize ppusim with threads
Diffstat (limited to 'src/ppusim/pixel.h')
-rw-r--r-- | src/ppusim/pixel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ppusim/pixel.h b/src/ppusim/pixel.h index 8044560..475fe11 100644 --- a/src/ppusim/pixel.h +++ b/src/ppusim/pixel.h @@ -1,6 +1,6 @@ #pragma once -#include <SDL2/SDL.h> +#include "ppusim/work.h" -void hh_ppusim_pixel(SDL_Renderer*, unsigned x, unsigned y); +void hh_ppusim_pixel(uint8_t* s, unsigned x, unsigned y); |