From 29c34f2ffb0a006ab9000cf031b509342346ad03 Mon Sep 17 00:00:00 2001 From: slack Date: Mon, 22 Sep 2008 17:48:56 +0200 Subject: [PATCH] Added missing include guard to opcodes.h --- opcodes.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opcodes.h b/opcodes.h index bd8d29f..f2507d1 100644 --- a/opcodes.h +++ b/opcodes.h @@ -18,6 +18,9 @@ // Macro definitions to avoid unnecesary repetition in gbcore.cc +#ifndef OPCODES_H +#define OPCODES_H + #define set_flag_if(cond, flag) \ if (cond) set_flag(flag); \ else reset_flag(flag) @@ -352,6 +355,6 @@ - +#endif -- 2.34.1