Skip to content

Commit

Permalink
fix another stdint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Mar 5, 2025
1 parent 8a2bf27 commit 212c6cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MCUME_pico2/picogen/gwenesis/vdp/gwenesis_vdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ __license__ = "GPLv3"
#ifndef _gwenesis_vdp_H_
#define _gwenesis_vdp_H_

#include "stdint.h"

#pragma once

#define BIT(v, idx) (((v) >> (idx)) & 1)
Expand Down Expand Up @@ -151,4 +153,4 @@ void gwenesis_vdp_gfx_load_state();
void gwenesis_vdp_mem_save_state();
void gwenesis_vdp_mem_load_state();

#endif
#endif

0 comments on commit 212c6cc

Please sign in to comment.