Giter Site home page Giter Site logo

Comments (3)

sorgelig avatar sorgelig commented on July 25, 2024

Fixed by myself :)

From 06f747fc3ec67a1febe558630847047dc6e27a40 Mon Sep 17 00:00:00 2001
From: sorgelig <[email protected]>
Date: Tue, 1 Dec 2015 21:55:58 +0800
Subject: [PATCH] Fix OSD menu in RGBS mode.

---
 spectrum_mist.vhd | 2 +-
 video.vhd         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/spectrum_mist.vhd b/spectrum_mist.vhd
index a5c714d..fe4006d 100644
--- a/spectrum_mist.vhd
+++ b/spectrum_mist.vhd
@@ -1295,7 +1295,7 @@ begin
    zx_green <= vid_g_out & "00";
    zx_blue <= vid_b_out & "00";
    VGA_HS <= vid_hcsync_n;
-   VGA_VS <= vid_vsync_n;
+   VGA_VS <= '1' when scandoubler_disable = '1' else vid_vsync_n;

    -- route video through osd
    osd_d : osd
diff --git a/video.vhd b/video.vhd
index 1c2189a..5fc0df5 100644
--- a/video.vhd
+++ b/video.vhd
@@ -124,7 +124,7 @@ begin

    -- Output syncs
    -- drive VSYNC to 1 in PAL mode for Minimig VGA cable
-   nVSYNC <= '1' when VGA = '0' else not vsync;
+   nVSYNC <= not vsync;
    nHSYNC <= not hsync;
    nCSYNC <= not (vsync xor hsync);
    -- Combined HSYNC/CSYNC.  Feeds HSYNC to VGA HSYNC in VGA mode,
-- 
1.8.3.msysgit.0 

from mist-board.

harbaum avatar harbaum commented on July 25, 2024

Excellent. Thanks a lot. Such contributions really make life easier. I just send you an invitation. Please feel free to check in your changes yourself.

from mist-board.

harbaum avatar harbaum commented on July 25, 2024

fixed

from mist-board.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.