Browse Source

Rename a file to prevent possible recursion issues

tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
68a5b47328
2 changed files with 11 additions and 2 deletions
  1. +11
    -2
      source/frontend/carla-control
  2. +0
    -0
      source/frontend/carla_host_control.py

+ 11
- 2
source/frontend/carla-control View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

# Carla plugin host
# Copyright (C) 2011-2017 Filipe Coelho <falktx@falktx.com>
# Copyright (C) 2011-2021 Filipe Coelho <falktx@falktx.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -19,7 +19,16 @@
# ----------------------------------------------------------------------------------------------------------------------
# Imports (Custom Stuff)

from carla_control import *
from carla_host_control import (
ENGINE_PROCESS_MODE_BRIDGE,
CarlaApplication,
CarlaHostOSC,
HostWindowOSC,
handleInitialCommandLineArguments,
initHost,
loadHostSettings,
setUpSignals,
)

# ----------------------------------------------------------------------------------------------------------------------
# Main


source/frontend/carla_control.py → source/frontend/carla_host_control.py View File


Loading…
Cancel
Save