Skip to content

Commit

Permalink
Fixed the uint to uint32_t to build on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-manley committed Dec 1, 2024
1 parent 6386a30 commit f939ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wx-ui/viewers/viewer_vram.cc
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class ViewerVRAMCanvas: public wxWindow
for (int y = 0; y < h; y++)
{
unsigned char *data = buffer_data + y*3*buffer.GetWidth();
uint old_addr = addr;
uint32_t old_addr = addr;

addr += y_offset * offset;

Expand Down

0 comments on commit f939ee6

Please sign in to comment.