Fixed a crash when DWARF report a source line number exceeding the number of lines...
[clinton/Virtual-Jaguar-Rx.git] / src / state.cpp
CommitLineData
cf76e892
JPM
1//
2// state.cpp: VJ machine state save/load support
3//
4// by James Hammons
5// (C) 2010 Underground Software
6//
7// JLH = James Hammons <jlhamm@acm.org>
8//
9// Who When What
10// --- ---------- -------------------------------------------------------------
11// JLH 01/16/2010 Created this log ;-)
12//
13
14#include "state.h"
15
16bool SaveState(void)
17{
18 return false;
19}
20
21bool LoadState(void)
22{
23 return false;
24}
25