We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df53cca commit 71713bfCopy full SHA for 71713bf
libcommon/src/bus/cartridges/rom_cartridge.cpp
@@ -41,12 +41,12 @@ namespace vcc::bus::cartridges
41
throw ::std::invalid_argument("Cannot construct ROM Cartridge. The cartridge context is null.");
42
}
43
44
- if (name.empty())
+ if (name_.empty())
45
{
46
throw ::std::invalid_argument("Cannot construct ROM Cartridge. The catalog name is empty.");
47
48
49
- if (buffer.empty())
+ if (buffer_.empty())
50
51
throw ::std::invalid_argument("Cannot construct ROM Cartridge. The ROM buffer is empty.");
52
0 commit comments