Skip to content

Commit

Permalink
homelab: fixed small bug from last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed Oct 5, 2024
1 parent c2a1654 commit 1039153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mame/homelab/homelab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -841,13 +841,13 @@ QUICKLOAD_LOAD_MEMBER(homelab_state::quickload_cb)
address_space &space = m_maincpu->space(AS_PROGRAM);
int block_counter = 0;
char block_last_character = 1;
char pgmname[256] {};
u16 args[2];

image.fseek(0, SEEK_SET);

while (block_last_character != 0)
{
char pgmname[256] = {};
u16 args[2];
u8 ch = 0;
u32 bytes = 0;

Expand Down

0 comments on commit 1039153

Please sign in to comment.