Skip to content

Commit

Permalink
Fix Issue#224
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Fosdick committed Mar 5, 2024
1 parent f33d280 commit f35ab25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ static void tube_init(void)
{
if (curtube!=-1) {
TUBE_MODEL *tube = &tubes[curtube];
if (!tube->bootrom[0]) { // no boot ROM needed
if (!(tube->bootrom && tube->bootrom[0])) { // no boot ROM needed
tube->cpu->init(NULL);
tube_updatespeed();
tube_reset();
Expand Down

0 comments on commit f35ab25

Please sign in to comment.