From b9d0a4f688ae0fc0f023d3226b6ef4fa77ad4ead Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Mon, 17 Sep 2018 19:43:05 +0200 Subject: [PATCH] msvc fix --- core/hw/modem/picoppp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/hw/modem/picoppp.cpp b/core/hw/modem/picoppp.cpp index 265718562..db835b613 100644 --- a/core/hw/modem/picoppp.cpp +++ b/core/hw/modem/picoppp.cpp @@ -341,8 +341,8 @@ void stop_pico() #include "types.h" bool start_pico() { return false; } -void stop_pico(); -void write_pico(u8 b); +void stop_pico() { } +void write_pico(u8 b) { } int read_pico() { return -1; } #endif