From: slack Date: Mon, 22 Sep 2008 15:48:56 +0000 (+0200) Subject: Added missing include guard to opcodes.h X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=29c34f2ffb0a006ab9000cf031b509342346ad03;p=wenboi.git Added missing include guard to opcodes.h --- 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