Changeset fea85dea108170c42f126e7937821c074384c8b5
- Timestamp:
- 03/29/08 00:38:32
(3 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1206747512 +0100
- git-parent:
[e0bbc1967a72e56f7987c03c713d58b5561c14b4]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1206747278 +0100
- Message:
fix jvlc arguments
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ree51616 |
rfea85de |
|
| 49 | 49 | public JVLC() |
|---|
| 50 | 50 | { |
|---|
| 51 | | String[] args = new String[1]; |
|---|
| 52 | | args[0] = "jvlc"; |
|---|
| | 51 | String[] args = new String[] {}; |
|---|
| 53 | 52 | instance = createInstance(args); |
|---|
| 54 | 53 | mediaList = new MediaList(this); |
|---|
| … | … | |
| 57 | 56 | public JVLC(String[] args) |
|---|
| 58 | 57 | { |
|---|
| 59 | | String[] myargs = new String[args.length + 1]; |
|---|
| 60 | | myargs[0] = "jvlc"; |
|---|
| 61 | | System.arraycopy(args, 0, myargs, 1, args.length); |
|---|
| 62 | | instance = createInstance(myargs); |
|---|
| | 58 | instance = createInstance(args); |
|---|
| 63 | 59 | } |
|---|
| 64 | 60 | |
|---|