diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2023-10-21 22:40:05 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2023-10-21 22:40:05 +0530 |
commit | 8e05017554078c2b13bf932ae9355d3366852d56 (patch) | |
tree | 42b78ca05fc3b0a957f4e8ce02a2a89f6be5a05c /src/platform.cpp | |
parent | 06fa370829afbe54d97f491d80de39dcb3013430 (diff) |
make some things private
Diffstat (limited to 'src/platform.cpp')
-rw-r--r-- | src/platform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform.cpp b/src/platform.cpp index 2840fa1..c5fe5bf 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -15,7 +15,7 @@ Platform::~Platform() { SDL_Quit(); } -void Platform::Update(const std::bitset<4096>& bitset, int videoScale) { +void Platform::Update(const std::bitset<2048>& bitset, int videoScale) { SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); SDL_RenderClear(renderer); |