diff options
| author | 2021-04-04 05:20:04 +1000 | |
|---|---|---|
| committer | 2021-04-04 05:20:04 +1000 | |
| commit | 82222e9b73bfda31100683c65e3105775ce4fdfc (patch) | |
| tree | 90433702e6ba3139ac7276649189554d41a30181 | |
| parent | d4cc6959af990582a65fbcfbd90216c49c84e5c5 (diff) | |
bus/a2bus: Fix clang build (no idea how GCC didn't fail to compile that).
| -rw-r--r-- | src/devices/bus/a2bus/grapplerplus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/a2bus/grapplerplus.cpp b/src/devices/bus/a2bus/grapplerplus.cpp index dd43d1ae0f6..bae3ea57b1d 100644 --- a/src/devices/bus/a2bus/grapplerplus.cpp +++ b/src/devices/bus/a2bus/grapplerplus.cpp @@ -278,7 +278,7 @@ void a2bus_grapplerplus_device_base::set_slct_in(void *ptr, s32 param) { if (u32(param) != m_slct_in) { - LOG("SELECT=%d\n", state); + LOG("SELECT=%d\n", param); m_slct_in = u8(u32(param)); } } |
