Skip to content

Commit

Permalink
Work around a whack-ass bug in sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Apr 19, 2024
1 parent 701085f commit e1e794e
Show file tree
Hide file tree
Showing 81 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion src/libretro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .api import *
from .builder import *
from .core import *
from .driver import *
from .drivers import *
from .error import *
from .session import *
2 changes: 1 addition & 1 deletion src/libretro/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
retro_throttle_state,
)
from libretro.core import Core
from libretro.driver import (
from libretro.drivers import (
ArrayAudioDriver,
ArrayVideoDriver,
AudioDriver,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,24 @@
retro_vfs_interface_info,
)
from libretro.api._utils import as_bytes, from_zero_terminated, memoryview_at
from libretro.driver.audio import AudioDriver
from libretro.driver.camera import CameraDriver
from libretro.driver.content import ContentDriver
from libretro.driver.input import InputDriver
from libretro.driver.led import LedDriver
from libretro.driver.location import LocationDriver
from libretro.driver.log import LogDriver
from libretro.driver.message import MessageInterface
from libretro.driver.microphone import MicrophoneDriver
from libretro.driver.midi import MidiDriver
from libretro.driver.options import OptionDriver
from libretro.driver.path import PathDriver
from libretro.driver.perf import PerfDriver
from libretro.driver.power import PowerDriver
from libretro.driver.timing import TimingDriver
from libretro.driver.user import UserDriver
from libretro.driver.vfs import FileSystemInterface
from libretro.driver.video import VideoDriver
from libretro.drivers.audio import AudioDriver
from libretro.drivers.camera import CameraDriver
from libretro.drivers.content import ContentDriver
from libretro.drivers.input import InputDriver
from libretro.drivers.led import LedDriver
from libretro.drivers.location import LocationDriver
from libretro.drivers.log import LogDriver
from libretro.drivers.message import MessageInterface
from libretro.drivers.microphone import MicrophoneDriver
from libretro.drivers.midi import MidiDriver
from libretro.drivers.options import OptionDriver
from libretro.drivers.path import PathDriver
from libretro.drivers.perf import PerfDriver
from libretro.drivers.power import PowerDriver
from libretro.drivers.timing import TimingDriver
from libretro.drivers.user import UserDriver
from libretro.drivers.vfs import FileSystemInterface
from libretro.drivers.video import VideoDriver

from .default import DefaultEnvironmentDriver

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
retro_input_descriptor,
retro_keyboard_callback,
)
from libretro.driver.rumble import RumbleInterface
from libretro.driver.sensor import SensorInterface
from libretro.drivers.rumble import RumbleInterface
from libretro.drivers.sensor import SensorInterface


@runtime_checkable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
retro_input_descriptor,
retro_keyboard_callback,
)
from libretro.driver.rumble import RumbleInterface
from libretro.driver.sensor import SensorInterface
from libretro.drivers.rumble import RumbleInterface
from libretro.drivers.sensor import SensorInterface

from .driver import InputDriver

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/libretro/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
)
from libretro.api._utils import as_bytes
from libretro.core import Core, CoreInterface
from libretro.driver import (
from libretro.drivers import (
AudioDriver,
CompositeEnvironmentDriver,
ContentDriver,
Expand Down

0 comments on commit e1e794e

Please sign in to comment.