mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-17 22:38:59 +00:00
Updates Qt project; catches another couple of issues via its compiler.
This commit is contained in:
parent
9a2f32795f
commit
68c15bd605
@ -91,6 +91,7 @@ SOURCES += \
|
||||
\
|
||||
$$SRC/Processors/6502/Implementation/*.cpp \
|
||||
$$SRC/Processors/6502/State/*.cpp \
|
||||
$$SRC/Processors/65816/Implementation/*.cpp \
|
||||
$$SRC/Processors/68000/Implementation/*.cpp \
|
||||
$$SRC/Processors/68000/State/*.cpp \
|
||||
$$SRC/Processors/Z80/Implementation/*.cpp \
|
||||
@ -214,6 +215,10 @@ HEADERS += \
|
||||
$$SRC/Processors/6502/*.hpp \
|
||||
$$SRC/Processors/6502/Implementation/*.hpp \
|
||||
$$SRC/Processors/6502/State/*.hpp \
|
||||
$$SRC/Processors/6502Esque/*.hpp \
|
||||
$$SRC/Processors/6502Esque/Implementation/*.hpp \
|
||||
$$SRC/Processors/65816/*.hpp \
|
||||
$$SRC/Processors/65816/Implementation/*.hpp \
|
||||
$$SRC/Processors/68000/*.hpp \
|
||||
$$SRC/Processors/68000/Implementation/*.hpp \
|
||||
$$SRC/Processors/68000/State/*.hpp \
|
||||
|
@ -287,7 +287,7 @@ void MainWindow::launchMachine() {
|
||||
// Populate request text.
|
||||
QString requestText = romRequestBaseText;
|
||||
size_t index = 0;
|
||||
for(const auto rom: missingRoms) {
|
||||
for(const auto &rom: missingRoms) {
|
||||
requestText += "• ";
|
||||
requestText += rom.descriptive_name.c_str();
|
||||
|
||||
|
@ -9,9 +9,8 @@
|
||||
#ifndef WDC65816_hpp
|
||||
#define WDC65816_hpp
|
||||
|
||||
#include <cassert> // TEMPORARILY.
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <cstdio> // TEMPORARILY.
|
||||
#include <vector>
|
||||
|
||||
#include "../RegisterSizes.hpp"
|
||||
|
@ -215,7 +215,7 @@ enum Operation: uint8_t {
|
||||
RTS,
|
||||
};
|
||||
|
||||
class ProcessorStorageConstructor;
|
||||
struct ProcessorStorageConstructor;
|
||||
|
||||
struct ProcessorStorage {
|
||||
ProcessorStorage();
|
||||
|
Loading…
x
Reference in New Issue
Block a user